example.bash

#!/usr/bin/env bash

function internal_function(){
    msg_warn "This is an internal function."
    msg "This is intended for use by your program, NOT by your program's end-users."
    # Though, I do hope to add a feature to call internal functions directly from user-space. Sometimes its super helpful!!!
}